home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 348 b | 22 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_GENERIC3
- --
- -- From a bug report of : Cyril ADRIAN
- --
-
- creation make
-
- feature
-
- make is
- local
- g: AUX_GENERIC3;
- do
- !!g.use(<<1 2>>);
- !!g.use(<<1.5 2.5>>);
- end;
-
- end -- TEST_GENERIC3
-